/// declare const TourPage: ({ tour }: { tour: any; }) => JSX.Element; export declare function getStaticPaths(): Promise<{ paths: any[]; fallback: boolean; }>; export declare function getStaticProps(context: any): Promise<{ props: { tour: any; }; revalidate: number; }>; export default TourPage;